home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / CSCdy03429.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  76 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. #
  5. # See the Nessus Script License for details
  6. #
  7. # Script audit and contributions from Carmichael Security <http://www.carmichaelsecurity.com>
  8. #      Erik Anderson <eanders@carmichaelsecurity.com>
  9. #      Added BugtraqID and CAN
  10. #
  11. #
  12.  
  13.  
  14. if(description)
  15. {
  16.  script_id(11056);
  17.  script_bugtraq_id(5328);
  18.  script_version("$Revision: 1.5 $");
  19.  script_cve_id("CVE-2002-0813");
  20.  
  21.  name["english"] = "CSCdy03429";
  22.  
  23.  script_name(english:name["english"]);
  24.  
  25.  desc["english"] = "
  26.  
  27. Trivial File Transfer Protocol (TFTP) is a protocol which allows for 
  28. easy transfer of files between network connected devices. 
  29.  
  30. A vulnerability has been discovered in the processing of filenames within
  31. a TFTP read request when Cisco IOS is configured to act as a TFTP server
  32.  
  33. This vulnerability is documented as Cisco Bug ID CSCdy03429
  34.  
  35. Solution : 
  36. http://www.cisco.com/warp/public/707/ios-tftp-long-filename-pub.shtml
  37. Risk factor : High
  38.  
  39. *** As Nessus solely relied on the banner of the remote host
  40. *** this might be a false positive
  41. ";
  42.  script_description(english:desc["english"]);
  43.  
  44.  summary["english"] = "Uses SNMP to determine if a flaw is present";
  45.  script_summary(english:summary["english"]);
  46.  
  47.  script_category(ACT_GATHER_INFO);
  48.  
  49.  script_copyright(english:"This script is (C) 2002 Renaud Deraison");
  50.  
  51.  script_family(english:"CISCO");
  52.  
  53.  script_dependencie("snmp_sysDesc.nasl");
  54.  script_require_keys("SNMP/community",
  55.               "SNMP/sysDesc");
  56.  exit(0);
  57. }
  58.  
  59.  
  60. # The code starts here
  61. ok=0;
  62. os = get_kb_item("SNMP/sysDesc"); if(!os)exit(0);
  63.  
  64.  
  65.  
  66.  
  67. # Check for the required operating system...
  68. #----------------------------------------------------------------
  69. # Is this IOS ?
  70. if(!egrep(pattern:".*(Internetwork Operating|IOS).*", string:os))exit(0);
  71.  
  72. # IOSes 11.1 to 11.3 are vulnerable
  73. if(egrep(string:os, pattern:".* 11\.[1-3][^0-9].*"))
  74.     security_hole(port:161, proto:"udp");
  75.  
  76.